home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / time_.h < prev    next >
C/C++ Source or Header  |  1997-02-09  |  3KB  |  78 lines

  1. /* Copyright (C) 1991, 1995, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* time_.h */
  20. /* Generic substitute for Unix sys/time.h */
  21.  
  22. /* We must include std.h before any file that includes sys/types.h. */
  23. #include "std.h"
  24.  
  25. /* The location (or existence) of certain system headers is */
  26. /* environment-dependent. We detect this in the makefile */
  27. /* and conditionally define switches in gconfig_.h. */
  28. #include "gconfig_.h"
  29.  
  30. /* Some System V environments don't include sys/time.h. */
  31. /* The HAVE_SYS_TIME_H switch in gconfig_.h reflects this. */
  32. #ifdef HAVE_SYS_TIME_H
  33. #  include <sys/time.h>
  34. #  if defined(M_UNIX) || defined(_IBMR2)    /* SCO and AIX need both time.h and sys/time.h! */
  35. #    include <time.h>
  36. #  endif
  37. #else
  38. #  include <time.h>
  39. #  ifndef __DECC
  40. struct timeval {
  41.     long tv_sec, tv_usec;
  42. };
  43. #  endif
  44. struct timezone {
  45.     int tz_minuteswest, tz_dsttime;
  46. };
  47. #endif
  48.  
  49. #if defined(ultrix) && defined(mips)
  50. /* Apparently some versions of Ultrix for the DECstation include */
  51. /* time_t in sys/time.h, and some don't.  If you get errors */
  52. /* compiling gp_unix.c, uncomment the next line. */
  53. /*    typedef    int    time_t;    */
  54. #endif
  55.  
  56. /* In SVR4.0 (but not other System V implementations), */
  57. /* gettimeofday doesn't take a timezone argument. */
  58. #ifdef SVR4_0
  59. #  define gettimeofday_no_timezone 1
  60. #else
  61. #  define gettimeofday_no_timezone 0
  62. #endif
  63.  
  64. /* Some System V environments, and Posix environments, need <sys/times.h>. */
  65. #ifdef HAVE_SYS_TIMES_H
  66. #  include <sys/times.h>
  67. #  define use_times_for_usertime 1
  68.         /* Posix 1003.1b-1993 section 4.8.1.5 says that
  69.            CLK_TCK is obsolescent and that sysconf(_SC_CLK_TCK)
  70.            should be used instead, but this requires including
  71.            <unistd.h>, which is too painful to configure.  */
  72. #  ifndef CLK_TCK
  73. #    define CLK_TCK 100        /* guess for older hosts */
  74. #  endif
  75. #else
  76. #  define use_times_for_usertime 0
  77. #endif
  78.